(when, unless): Doc fix.
authorJuanma Barranquero <lekktu@gmail.com>
Sat, 14 Jul 2007 11:07:24 +0000 (11:07 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Sat, 14 Jul 2007 11:07:24 +0000 (11:07 +0000)
lisp/subr.el

index 185b9031d277956b80700d3c8df51d730b1fde3c..c4816f5d13412c5b9d6b961f942e9a57fdfbfb6c 100644 (file)
@@ -103,7 +103,7 @@ change the list."
 When COND yields non-nil, eval BODY forms sequentially and return
 value of last one, or nil if there are none.
 
-\(fn COND BODY ...)"
+\(fn COND BODY...)"
   (declare (indent 1) (debug t))
   (list 'if cond (cons 'progn body)))
 
@@ -112,7 +112,7 @@ value of last one, or nil if there are none.
 When COND yields nil, eval BODY forms sequentially and return
 value of last one, or nil if there are none.
 
-\(fn COND BODY ...)"
+\(fn COND BODY...)"
   (declare (indent 1) (debug t))
   (cons 'if (cons cond (cons nil body))))